<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">$(function(){
var starttime= -1;
var endtime = -1;
var ontime = new Date();
var onTime = new Date(new Date(ontime).toLocaleDateString()).getTime();
if(onTime &gt;= starttime &amp;&amp; onTime &lt; endtime){
  $("html *:not(:has(#gh)):not(#gh)").css("filter","grayscale(1)");
  $("html *:not(:has(#gh)):not(#gh)").css("-webkit-filter","grayscale(100%)");
  $("html *:not(:has(#gh)):not(#gh)").css("-moz-filter","grayscale(100%)");
  $("html *:not(:has(#gh)):not(#gh)").css("-ms-filter","grayscale(100%)");
  $("html *:not(:has(#gh)):not(#gh)").css("-o-filter","grayscale(100%)");
  $("html *:not(:has(#gh)):not(#gh)").css("filter","progid:DXImageTransform.Microsoft.BasicImage(grayscale=1)");
  $(".global-header-box-front").parents().css("filter", "");
}
})
</pre></body></html>